home *** CD-ROM | disk | FTP | other *** search
/ Ahoy 1986 December / Ahoy_Magazine_86-12_1986_Double_L.d64 / simple term.txt < prev    next >
Text File  |  2022-10-26  |  1KB  |  41 lines

  1. SIMPLE TERM
  2. by David Stidolph
  3.  
  4. This telecommunications program is
  5. short and provides only a few
  6. features: dialing, re-dialing,
  7. waiting for calls, ASCII translation,
  8. and full/ half duplex control. It
  9. takes up very little memory and can
  10. be extended.
  11.  
  12. The program was designed from the
  13. beginning to be adapted by the user.
  14. I tried to write it in the most
  15. logical fashion I could so that you
  16. can understand it without a lot of
  17. comments. The program is under 300
  18. lines long, so there is plenty of
  19. memory space for improvements like
  20. file transfer and bufferring.
  21.  
  22. One possible extension would be a
  23. modem configuration procedure (for
  24. parity, stop bits, etc.) that would
  25. allow changes while the program is
  26. running. As it is now, the modem is
  27. opened for 300 baud, 8 data bits, no
  28. parity, and one stop bit.
  29.  
  30. Many terminal programs I've seen had
  31. a common flaw - improper carrier
  32. detection. It seems that when you
  33. call a number and get a busy signal,
  34. the modem thinks it is another
  35. computer and switches on the carrier
  36. detect line. Terminal programs will
  37. generally assume this is a valid
  38. computer and connect the user. My
  39. program has a wait loop that makes
  40. sure it is getting a steady signal.
  41.